projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca53bf8
)
(mh-make-seq, mh-seq-name): Use defsubst.
author
Richard M. Stallman
<rms@gnu.org>
Wed, 6 Feb 2008 17:49:49 +0000
(17:49 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 6 Feb 2008 17:49:49 +0000
(17:49 +0000)
lisp/mh-e/mh-seq.el
patch
|
blob
|
history
diff --git
a/lisp/mh-e/mh-seq.el
b/lisp/mh-e/mh-seq.el
index 87c59cd81369306191480167fd89873140ebe387..fd64d8a6902bd830aa7f378eefede7283526065b 100644
(file)
--- a/
lisp/mh-e/mh-seq.el
+++ b/
lisp/mh-e/mh-seq.el
@@
-53,13
+53,13
@@
;;; Macros
-(def
macro
mh-make-seq (name msgs)
+(def
subst
mh-make-seq (name msgs)
"Create sequence NAME with the given MSGS."
- (
list '
cons name msgs))
+ (cons name msgs))
-(def
macro
mh-seq-name (sequence)
+(def
subst
mh-seq-name (sequence)
"Extract sequence name from the given SEQUENCE."
- (
list '
car sequence))
+ (car sequence))
\f